home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
prolog
/
brklyprl.lha
/
Emulator
/
Tests
/
Passed
/
test12.pl
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1989-04-14
|
293 b
|
14 lines
/* Copyright (C) 1988, 1989 Herve' Touati, Aquarius Project, UC Berkeley */
main :- calllist([a1,a2,a3,a4,a5]).
calllist(E) :- var(E), !.
calllist([H|T]) :- call(H), calllist(T).
a1 :- write(ok1), nl.
a2 :- write(ok2), nl.
a3 :- write(ok3), nl.
a4 :- write(ok4), nl.
a5 :- write(ok5), nl.